home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / netpak23.zip / WHATBOUT.BAT < prev   
DOS Batch File  |  1991-05-21  |  267b  |  13 lines

  1. @echo off
  2. if %1.==. goto error1
  3. howbout %1
  4. if errorlevel 1 goto error2
  5. echo The file or dir or drive you gave exists.
  6. goto end
  7. :error1
  8. echo Please specify a batch file parameter.
  9. goto end
  10. :error2
  11. echo The file or dir or drive you gave doesn't exist.
  12. :end
  13.